Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/185 - Insect_Catching_Game/

Readme.md /cody/swapnilsparsh/30DaysOfJavaScript/185 - Insect_Catching_Game/Readme.md
244 Views
0 Comments
# Insect-Catching Game

## A well-designed interesting game where you can play with your favourite insect and catch it to get th
index.html /cody/swapnilsparsh/30DaysOfJavaScript/185 - Insect_Catching_Game/index.html
381 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, in
script.js /cody/swapnilsparsh/30DaysOfJavaScript/185 - Insect_Catching_Game/script.js
227 Views
0 Comments
const screens = document.querySelectorAll('.screen');
const choose_insect_btns = document.querySelectorAll('.choose-insect-btn')
style.css /cody/swapnilsparsh/30DaysOfJavaScript/185 - Insect_Catching_Game/style.css
171 Views
0 Comments
@import url('https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap');

* {
box-sizing: border-box;
}

body {
b